SKU:U163
The Neco Unit is a unique RGB light board unit that features an adorable cat ear shape. It is designed with precision and comprises 35 WS2812C-2020 RGB lamp beads, providing vibrant and customizable lighting effects.
With two 4-pin grove ports, this unit seamlessly connects to the M5Stack host, allowing for easy integration and expansion of additional units. The Neco Unit offers endless possibilities for creating mesmerizing lighting setups and captivating visual displays.
Enhancing user interaction, the unit is equipped with a button that enables users to interact with the host and effortlessly switch between various lighting effects. Whether it's creating an inviting ambiance for home decoration, setting the mood for a lively party atmosphere, or enhancing stage performances, the Neco Unit is perfect for a wide range of scenes and occasions.
Resources | Parameters |
---|---|
RGB lamp bead | WS2812C-2020 |
Consumes current | 5mA(each RGB lamp bead) |
Brightness level | 256 levels of brightness display |
Connection method | Serial cascade interface |
Operating temperature | 0-85°C |
Number of colors | 16777216 colors |
Product Size | 41*46*1mm |
Package Size | 95*65*25mm |
Product Weight | 9.2g |
Package Weight | 34.7g |
#include <Adafruit_NeoPixel.h>
#define PIN 2 // M5AtomS3
#define NUMPIXELS 70
Adafruit_NeoPixel pixels(NUMPIXELS, PIN, NEO_GRB + NEO_KHZ800);
#define DELAYVAL 100
void setup() {
pixels.setBrightness(20);
pixels.begin();
}
void loop() {
pixels.clear();
for(int i=0; i<NUMPIXELS; i++) {
pixels.setPixelColor(i, pixels.Color(244, 24, 208));
}
pixels.show();
}